home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 741 / rkrm_devices / rkrm_devices.lha / Serial / Simple_Serial.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  4KB  |  110 lines

  1. /*
  2.  * Copyright (c) 1992 Commodore-Amiga, Inc.
  3.  * 
  4.  * This example is provided in electronic form by Commodore-Amiga, Inc. for 
  5.  * use with the "Amiga ROM Kernel Reference Manual: Devices", 3rd Edition, 
  6.  * published by Addison-Wesley (ISBN 0-201-56775-X).
  7.  * 
  8.  * The "Amiga ROM Kernel Reference Manual: Devices" contains additional 
  9.  * information on the correct usage of the techniques and operating system 
  10.  * functions presented in these examples.  The source and executable code 
  11.  * of these examples may only be distributed in free electronic form, via 
  12.  * bulletin board or as part of a fully non-commercial and freely 
  13.  * redistributable diskette.  Both the source and executable code (including 
  14.  * comments) must be included, without modification, in any copy.  This 
  15.  * example may not be published in printed form or distributed with any
  16.  * commercial product.  However, the programming techniques and support
  17.  * routines set forth in these examples may be used in the development
  18.  * of original executable software products for Commodore Amiga computers.
  19.  * 
  20.  * All other rights reserved.
  21.  * 
  22.  * This example is provided "as-is" and is subject to change; no
  23.  * warranties are made.  All use is at your own risk. No liability or
  24.  * responsibility is assumed.
  25.  *
  26.  *****************************************************************************
  27.  *
  28.  *
  29.  * Simple_Serial.c
  30.  *
  31.  * This is an example of using the serial device.
  32.  * First, we will attempt to create a message port with CreateMsgPort()
  33.  * Next, we will attempt to create the IORequest with CreateExtIO()
  34.  * Then, we will attempt to open the serial device with OpenDevice()
  35.  * If successful, we will write a null-terminated string to it
  36.  * and reverse our steps.
  37.  * If we encounter an error at any time, we will gracefully exit.
  38.  *
  39.  * Compile with SAS C 5.10  lc -b1 -cfistq -v -y -L
  40.  *
  41.  * Run from CLI only
  42.  */
  43. #include <exec/types.h>
  44. #include <exec/memory.h>
  45. #include <exec/io.h>
  46. #include <exec/libraries.h>
  47. #include <devices/serial.h>
  48.  
  49. #include <clib/exec_protos.h>
  50. #include <clib/alib_protos.h>
  51.  
  52. #include <stdio.h>
  53.  
  54. #ifdef LATTICE
  55. int CXBRK(void) { return(0); }   /* Disable Lattice CTRL/C handling */
  56. int chkabort(void) { return(0); }/* really */
  57. #endif
  58.  
  59. extern struct Library *SysBase; /* Used to check the version number of the OS */
  60.  
  61. VOID main(VOID)
  62. {
  63. struct MsgPort *SerialMP;       /* pointer to our message port */
  64. struct IOExtSer *SerialIO;      /* pointer to our IORequest */
  65.  
  66.    /* The CreateMsgPort() call is available starting with V36 of the OS */
  67. if(SysBase->lib_Version >= 36)
  68.    {
  69.       /* Create the message port */
  70.    if (SerialMP=CreateMsgPort())
  71.       {
  72.          /* Create the IORequest */
  73.       if (SerialIO = (struct IOExtSer *)
  74.                   CreateExtIO(SerialMP,sizeof(struct IOExtSer)))
  75.          {
  76.             /* Open the serial device */
  77.          if (OpenDevice(SERIALNAME,0,(struct IORequest *)SerialIO,0L))
  78.  
  79.             /* Inform user that it could not be opened */
  80.             printf("Error: %s did not open\n",SERIALNAME);
  81.          else
  82.             {
  83.             /* device opened, write null-terminated string */
  84.             SerialIO->IOSer.io_Length   = -1;
  85.             SerialIO->IOSer.io_Data    = (APTR)"Amiga ";
  86.             SerialIO->IOSer.io_Command  = CMD_WRITE;
  87.             if (DoIO((struct IORequest *)SerialIO))    /* execute write */
  88.                printf("Write failed.  Error - %d\n",SerialIO->IOSer.io_Error);
  89.  
  90.             /* Close the serial device */
  91.             CloseDevice((struct IORequest *)SerialIO);
  92.             }
  93.          /* Delete the IORequest */
  94.          DeleteExtIO(SerialIO);
  95.          }
  96.       else
  97.          /* Inform user that the IORequest could be created */
  98.          printf("Error: Could create IORequest\n");
  99.  
  100.       /* Delete the message port */
  101.       DeleteMsgPort(SerialMP);
  102.       }
  103.    else
  104.       /* Inform user that the message port could not be created */
  105.       printf("Error: Could not create message port\n");
  106.    }
  107. else
  108.    printf("Error: Release 2 (V36) or a later version of the OS required.\n");
  109. }
  110.